gtklistboxrow: propagate in the draw vfunc
authorCarlos Soriano <csoriano@gnome.org>
Wed, 10 Jun 2015 15:42:10 +0000 (17:42 +0200)
committerCarlos Soriano <csoriano@gnome.org>
Wed, 10 Jun 2015 15:47:23 +0000 (17:47 +0200)
So objects connected by g_signal_connect_after actually get
the signal.
This was causing an issue in the dnd highlight, since there
a cairo rectangle is draw using g_signal_connect_after on the draw
signal.

gtk/gtklistbox.c

index 9e6286185e62341e4e6b3ea7b37dc66ac3706390..94c7288c2c5ed5cc4e31ac8709b3d7aa3cd8b2b8 100644 (file)
@@ -3089,7 +3089,7 @@ gtk_list_box_row_draw (GtkWidget *widget,
 
   GTK_WIDGET_CLASS (gtk_list_box_row_parent_class)->draw (widget, cr);
 
-  return TRUE;
+  return GDK_EVENT_PROPAGATE;
 }
 
 static void